home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pftp.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  86 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Thanks to Overlord <mail_collect@gmx.net> for supplying me
  7. # with the information for this problem as well as a copy of a
  8. # vulnerable version of PFTP
  9.  
  10. if(description)
  11. {
  12.  script_id(10508);
  13.  script_version ("$Revision: 1.5 $");
  14.  
  15.  
  16.  name["english"] = "PFTP login check";
  17.  name["francais"] = "VΘrification de login de PFTP";
  18.  
  19.  script_name(english:name["english"], francais:name["francais"]);
  20.  
  21.  desc["english"] = "
  22. It is possible to log into the remote FTP server
  23. as ' '/' '.
  24.  
  25. If the remote server is PFTP, then anyone
  26. can use this account to read arbitrary files
  27. on the remote host.
  28.  
  29. Solution : upgrade PFTP to version 2.9g
  30. Risk factor : High";
  31.  
  32.  
  33.  
  34.  desc["francais"] = "
  35. Il est possible de se logguer dans le serveur FTP distant
  36. en tant que ' '/' '.
  37.  
  38. Si le serveur distant est PFTP, alors n'importe qui peut
  39. utiliser ce compte pour lire des fichiers arbitraires sur 
  40. la machine distante.
  41.  
  42. Solution : mettez α jour PFTP en version 2.9g
  43. Facteur de risque : ElevΘ";
  44.  
  45.  
  46.  script_description(english:desc["english"], francais:desc["francais"]);
  47.  
  48.  summary["english"] = "Checks for a blank account";
  49.  summary["francais"] = "VΘrifie la prΘsence d'un compte vide";
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  57.  family["english"] = "FTP";
  58.  family["francais"] = "FTP";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencie("find_service.nes", "DDI_FTP_Any_User_Login.nasl");
  61.  script_require_ports("Services/ftp", 21);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. port = get_kb_item("Services/ftp");
  70. if(!port)port = 21;
  71. if(get_port_state(port))
  72. {
  73.   if(get_kb_item("ftp/" + port + "/AnyUser"))exit(0);
  74.  soc = open_sock_tcp(port);
  75.  if(soc)
  76.  {
  77.   if(ftp_log_in(socket:soc, user:" ", pass:" "))
  78.   {
  79.    security_hole(port);
  80.    set_kb_item(name:"ftp/pftp_login_problem", value:TRUE);
  81.   }
  82.   close(soc);
  83.  }
  84. }
  85.